home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / legaltools / lsdlt091.dms / lsdlt091.adf / test.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1990-09-13  |  341 b   |  20 lines

  1. /* ARexx script to test mouse program */
  2.  
  3. address 'ontheball'
  4. options results
  5. options prompt 'ontheball>'
  6.  
  7. do forever
  8.  
  9.     parse pull command    /* get a command from the user */
  10.  
  11.     drop rc                    /* clear out previous return code */
  12.  
  13.     drop result                /* clear out previous result */
  14.  
  15.     interpret command        /* execute the command */
  16.  
  17.     say rc result
  18.  
  19. end
  20.